data class; input name$ sex$ age height weight; cards; Alfred M 14 69.0 112.5 Alice F 13 56.5 84.0 Barbara F 13 65.3 98.0 Carol F 14 62.8 102.5 Henry M 14 63.5 102.5 James M 12 57.3 83.0 Jane F 12 59.8 84.5 Janet F 15 62.5 112.5 Jeffrey M 13 62.5 84.0 John M 12 59.0 99.5 ; run; proc print data=class; run; libname hercules 'S:\Courses\stat-renaes\Stat426\data1'; proc print data=hercules.order_fact; run; proc contents data=hercules._all_ nods; run; proc contents data=hercules.order_fact; run; proc datasets data=hercules._all_ nods; run; proc datasets data=hercules.order_fact; run;